home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / programming / other / studio16add / scripts / downsamplestudio < prev    next >
AmigaDOS Script File  |  1997-12-01  |  749b  |  31 lines

  1. .key PATTERN/A,DESTDIR/A
  2. .bra {
  3. .ket }
  4.  
  5. ; This script can downsample many Studio 16 files based
  6. ; on pattern matching.
  7. ;
  8. ; $VER: DownsampleStudio 1.0 (12.11.97)
  9. ; By Kenneth "Kenny" Nilsen (kenny@bgnett.no)
  10. ;
  11. ; USAGE: DownsampleStudio <pattern> <destdir/>
  12. ;
  13. ; NOTE: The commands must be in the command search path. To be safe
  14. ; copy the commands in C: or add the path where you keep the commands to
  15. ; the global search path (startup-sequence: path <path> ADD).
  16.  
  17. ;-- convert files
  18.  
  19. list {pattern} files lformat="echo *"Processing file '%N'...*"*nS16DownSample %P%N {DESTDIR}%N.ds" >t:tmp.16
  20.  
  21. echo "Downsampling Studio 16 file(s).. please wait!"
  22.  
  23. execute t:tmp.16
  24. if WARN
  25.     echo "Error occured while downsampling files!"
  26.     endif
  27.  
  28. echo "Done"
  29.  
  30. lab Final
  31.